/* ======================================================
   ABOUT US HERO
====================================================== */

.about-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 780px;
    overflow: hidden;
}


/* ======================================================
   BACKGROUND IMAGES
====================================================== */

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: none;
    animation: none;
}

.about-hero-bg-current {
    z-index: 1;
    opacity: 1;
}

.about-hero-bg-next {
    z-index: 2;
    opacity: 1;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path 1.15s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: clip-path;
}

.about-hero-bg-next.is-visible {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}


/* ======================================================
   OVERLAY
====================================================== */

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}


/* ======================================================
   BREADCRUMB
====================================================== */

.breadcrumb-wrapper {
    position: absolute;
    top: 115px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    filter: none !important;
}

.breadcrumb-wrapper .breadcrumb {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 70px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    position: relative;
    left: -150px;
}

.breadcrumb-wrapper .breadcrumb,
.breadcrumb-wrapper .breadcrumb a,
.breadcrumb-wrapper .breadcrumb span {
    color: #ffffff;
    text-decoration: none;
    font-size: 9.24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.breadcrumb-wrapper::before,
.breadcrumb-wrapper::after {
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}


/* ======================================================
   MAIN CONTAINER
====================================================== */

.about-hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1450px;
    height: 100%;
    margin: 0 auto;
    padding: 0 70px;
}


/* ======================================================
   MAIN HEADING
====================================================== */

.about-hero-heading {
    position: absolute;
    top: 160px;
    left: 70px;
    max-width: 600px;
    margin: 0;
    font-size: 45px;
    font-weight: 500;
    line-height: 1.13;
    letter-spacing: -1.5px;
}

.about-heading-white {
    display: block;
    font-size: 45px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    color: #ffffff;
}

.about-heading-blue {
    display: block;
    font-size: 45px;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    color: #122560;
}


/* ======================================================
   HERO DESCRIPTION
====================================================== */

.about-hero-description {
    position: absolute;
    top: 275px;
    left: 70px;
    max-width: 440px;
    margin: 0;
    color: #06245c;
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    z-index: 5;
}


/* ======================================================
   BOTTOM AREA
====================================================== */

.about-hero-bottom {
    position: absolute;
    left: 70px;
    right: 70px;
    bottom: 55px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}


/* ======================================================
   LEFT CONTENT
====================================================== */

.about-hero-info {
    width: 440px;
    flex-shrink: 0;
    color: #102d70;
}

.about-active-name {
    margin: 0 0 28px;
    color: #102d70;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    transition: opacity 0.35s ease, transform 0.45s ease;
}


/* ======================================================
   DOTS
====================================================== */

.about-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
}

.about-slider-dot {
    width: 9px;
    height: 9px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-slider-dot.active {
    background: #ffffff;
    transform: scale(1.25);
}


/* ======================================================
   ACTIVE CONTENT
====================================================== */

.about-active-content {
    min-height: 95px;
}

.about-active-title {
    font-family: Poppins, sans-serif;
    margin: 0 0 10px;
    color: #122560;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    transition: opacity 0.35s ease, transform 0.45s ease;
}

.about-active-description {
    font-family: sans-serif;
    max-width: 430px;
    margin: 0;
    color: #102d70;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    transition: opacity 0.35s ease, transform 0.45s ease;
}


/* ======================================================
   CARDS CONTAINER
====================================================== */

.about-hero-cards {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-right: 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.45s ease;
}


/* ======================================================
   CARD
====================================================== */

.about-hero-card {
    position: relative;
    width: 285px;
    height: 265px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: none;
    text-align: left;
    cursor: pointer;
}

.about-hero-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-hero-card:hover img {
    transform: scale(1.07);
}

.about-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}


/* ======================================================
   CARD LINE
====================================================== */

.about-card-line {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 3;
    width: 30px;
    height: 2px;
    background: #ffffff;
    transition: width 0.4s ease;
}

.about-hero-card:hover .about-card-line {
    width: 55px;
}


/* ======================================================
   CARD TITLE
====================================================== */

.about-card-title {
    position: absolute;
    left: 25px;
    bottom: 22px;
    z-index: 3;
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}


/* ======================================================
   CONTENT CHANGE ANIMATION
====================================================== */

.about-content-hidden {
    opacity: 0;
    transform: translateY(12px);
}

.about-cards-hidden {
    opacity: 0;
    transform: translateY(15px);
}


/* ======================================================
   RESPONSIVE
====================================================== */


/* ===== LARGE DESKTOP ===== */

@media (max-width: 1500px) {

    .about-hero-cards {
        margin-right: 0;
    }

    .about-hero-card {
        width: 250px;
        height: 250px;
    }
}


/* ===== SMALL DESKTOP ===== */

@media (max-width: 1300px) {

    .about-hero-card {
        width: 230px;
        height: 235px;
    }

    .about-hero-heading {
        top: 175px;
    }

    .about-hero-description {
        top: 345px;
    }

    .about-hero-info {
        width: 400px;
    }
}


/* ===== LAPTOP ===== */

@media (max-width: 1200px) {

    .about-hero-container,
    .breadcrumb-wrapper .breadcrumb {
        max-width: 100%;
        padding: 0 40px;
    }

    .about-hero-heading {
        top: 165px;
        left: 40px;
        font-size: 40px;
    }

    .about-heading-white,
    .about-heading-blue {
        font-size: 40px;
    }

    .about-hero-description {
        top: 325px;
        left: 40px;
        font-size: 16px;
    }

    .about-hero-bottom {
        left: 40px;
        right: 40px;
        gap: 40px;
    }

    .about-hero-info {
        width: 360px;
    }

    .about-hero-card {
        width: 210px;
        height: 220px;
    }

    .about-active-title {
        font-size: 25px;
    }

    .about-active-description {
        font-size: 16px;
    }
}


/* ===== TABLET LANDSCAPE ===== */

@media (max-width: 1024px) {

    .about-hero-info {
        width: 320px;
    }

    .about-hero-card {
        width: 185px;
        height: 200px;
    }

    .about-card-title {
        font-size: 18px;
    }
}


/* ===== TABLET — switch to natural flow ===== */

@media (max-width: 900px) {

    .about-hero {
        height: auto;
        min-height: 0;
        overflow: hidden;
    }

    .breadcrumb-wrapper {
        top: 100px;
    }

    .about-hero-container,
    .breadcrumb-wrapper .breadcrumb {
        width: 100%;
        padding: 0 30px;
    }

    .about-hero-container {
        position: relative;
        height: auto;
        min-height: 100vh;
        padding-top: 150px;
        padding-bottom: 50px;
    }

    .about-hero-heading {
        position: relative;
        top: auto;
        left: auto;
        max-width: 100%;
        margin: 0;
        font-size: 40px;
    }

    .about-heading-white,
    .about-heading-blue {
        font-size: 40px;
    }

    .about-hero-description {
        position: relative;
        top: auto;
        left: auto;
        max-width: 560px;
        margin-top: 24px;
        font-size: 17px;
    }

    .about-hero-bottom {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 64px;
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .about-hero-info {
        width: 100%;
        max-width: 600px;
    }

    .about-active-content {
        min-height: 0;
    }

    .about-active-description {
        max-width: 600px;
    }

    .about-hero-cards {
        width: 100%;
        margin-right: 0;
        gap: 14px;
    }

    .about-hero-card {
        flex: 1 1 0;
        width: auto;
        height: 240px;
    }
}


/* ===== LARGE PHONE ===== */

@media (max-width: 680px) {

    .breadcrumb-wrapper {
        top: 92px;
    }

    .about-hero-container {
        padding-top: 132px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .about-hero-heading {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .about-heading-white,
    .about-heading-blue {
        font-size: 34px;
    }

    .about-hero-description {
        font-size: 16px;
        margin-top: 22px;
    }

    .about-hero-bottom {
        margin-top: 52px;
        gap: 34px;
    }

    .about-active-name {
        font-size: 23px;
        margin-bottom: 22px;
    }

    .about-active-title {
        font-size: 24px;
    }

    .about-active-description {
        font-size: 16px;
    }

    .about-hero-cards {
        flex-direction: column;
        gap: 12px;
    }

    .about-hero-card {
        width: 100%;
        flex: none;
        height: 220px;
    }
}


/* ===== SMALL PHONE ===== */

@media (max-width: 400px) {

    .breadcrumb-wrapper {
        top: 84px;
    }

    .breadcrumb-wrapper .breadcrumb,
    .breadcrumb-wrapper .breadcrumb a,
    .breadcrumb-wrapper .breadcrumb span {
        font-size: 8.5px;
        letter-spacing: .5px;
    }

    .about-hero-container {
        padding-top: 120px;
    }

    .about-hero-heading {
        font-size: 29px;
    }

    .about-heading-white,
    .about-heading-blue {
        font-size: 29px;
    }

    .about-hero-description {
        font-size: 15px;
    }

    .about-hero-bottom {
        margin-top: 44px;
    }

    .about-active-title {
        font-size: 22px;
    }

    .about-hero-card {
        height: 200px;
    }
}
/* ===================== */
/* breadcrumb responsive=============== */
/* ============================ */


/* ======================================================
   BREADCRUMB - RESPONSIVE
====================================================== */

@media (max-width: 1440px) {
    .breadcrumb-wrapper { --crumb-pad: 50px; }
}

@media (max-width: 1199px) {
    .breadcrumb-wrapper { --crumb-top: 100px; --crumb-pad: 40px; }
    margin-left: 120px;
}

@media (max-width: 991px) {
    .breadcrumb-wrapper { --crumb-top: 90px; --crumb-pad: 30px; }
    .breadcrumb-wrapper .breadcrumb { letter-spacing: .8px; }
}

@media (max-width: 767px) {
    .breadcrumb-wrapper { --crumb-top: 80px; --crumb-pad: 20px; }
    .breadcrumb-wrapper .breadcrumb { gap: 5px 6px; }
    .breadcrumb-wrapper .breadcrumb,
    .breadcrumb-wrapper .breadcrumb a,
    .breadcrumb-wrapper .breadcrumb span { font-size: 9px; letter-spacing: .6px; }
}

@media (max-width: 480px) {
    .breadcrumb-wrapper { --crumb-top: 72px; --crumb-pad: 16px; }
    .breadcrumb-wrapper .breadcrumb,
    .breadcrumb-wrapper .breadcrumb a,
    .breadcrumb-wrapper .breadcrumb span { font-size: 8.5px; letter-spacing: .4px; }
}

/* landscape phones: hero is short, so keep the crumbs clear of the title */
@media (max-height: 520px) and (orientation: landscape) {
    .breadcrumb-wrapper { --crumb-top: 66px; }
}
